home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
prog
/
panshr24.arj
/
ATTR.C
next >
Wrap
Text File
|
1991-09-10
|
397b
|
30 lines
#include "panel.h"
#include "keys.h"
unsigned keys[] = {
ENTER,
ESC,
0
};
main()
{
char buf[20];
pan_init();
pan_resp_keys(keys);
pan_activate("attr");
while (pan_execute("", 1, 0) != ESC)
{
pan_get_field("attr", 1, buf);
pan_field_attr("field", 1, buf);
}
pan_destroy();
}